home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / PInterfaces / GestaltEqu.p < prev    next >
Text File  |  1996-05-01  |  38KB  |  897 lines

  1. {
  2.      File:        GestaltEqu.p
  3.  
  4.      Contains:    Gestalt Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. }
  18. {$IFC UNDEFINED UsingIncludes}
  19. {$SETC UsingIncludes := 0}
  20. {$ENDC}
  21.  
  22. {$IFC NOT UsingIncludes}
  23.  UNIT GestaltEqu;
  24.  INTERFACE
  25. {$ENDC}
  26.  
  27. {$IFC UNDEFINED __GESTALTEQU__}
  28. {$SETC __GESTALTEQU__ := 1}
  29.  
  30. {$I+}
  31. {$SETC GestaltEquIncludes := UsingIncludes}
  32. {$SETC UsingIncludes := 1}
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37. {$IFC UNDEFINED __MIXEDMODE__}
  38. {$I MixedMode.p}
  39. {$ENDC}
  40.  
  41. {$PUSH}
  42. {$ALIGN MAC68K}
  43. {$LibExport+}
  44.  
  45. {$IFC FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE }
  46.  
  47. TYPE
  48.     SelectorFunctionProcPtr = ProcPtr;  { FUNCTION SelectorFunction(selector: OSType; VAR response: LONGINT): OSErr; }
  49.  
  50.     SelectorFunctionUPP = UniversalProcPtr;
  51.  
  52. CONST
  53.     uppSelectorFunctionProcInfo = $000003E0;
  54.  
  55. FUNCTION NewSelectorFunctionProc(userRoutine: SelectorFunctionProcPtr): SelectorFunctionUPP;
  56.     {$IFC NOT GENERATINGCFM }
  57.     INLINE $2E9F;
  58.     {$ENDC}
  59.  
  60. FUNCTION CallSelectorFunctionProc(selector: OSType; VAR response: LONGINT; userRoutine: SelectorFunctionUPP): OSErr;
  61.     {$IFC NOT GENERATINGCFM}
  62.     INLINE $205F, $4E90;
  63.     {$ENDC}
  64. {$ENDC}
  65. {$IFC FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE }
  66. FUNCTION Gestalt(selector: OSType; VAR response: LONGINT): OSErr;
  67.     {$IFC NOT GENERATINGCFM}
  68.     INLINE $225F, $201F, $A1AD, $2288, $3E80;
  69.     {$ENDC}
  70. {$ENDC}
  71. {$IFC FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED }
  72. FUNCTION ReplaceGestalt(selector: OSType; gestaltFunction: SelectorFunctionUPP; VAR oldGestaltFunction: SelectorFunctionUPP): OSErr;
  73.     {$IFC NOT GENERATINGCFM}
  74.     INLINE $225F, $205F, $201F, $2F09, $A5AD, $225F, $2288, $3E80;
  75.     {$ENDC}
  76. {$ENDC}
  77. {$IFC FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED }
  78. FUNCTION NewGestalt(selector: OSType; gestaltFunction: SelectorFunctionUPP): OSErr;
  79.     {$IFC NOT GENERATINGCFM}
  80.     INLINE $205F, $201F, $A3AD, $3E80;
  81.     {$ENDC}
  82. {$ENDC}
  83. {$IFC FOR_SYSTEM7_AND_SYSTEM8_COOPERATIVE }
  84. {     These functions are built into System 7.5, but not on earlier systems }
  85. FUNCTION NewGestaltValue(selector: OSType; newValue: LONGINT): OSErr;
  86.     {$IFC NOT GENERATINGCFM}
  87.     INLINE $303C, $0401, $ABF1;
  88.     {$ENDC}
  89. FUNCTION ReplaceGestaltValue(selector: OSType; replacementValue: LONGINT): OSErr;
  90.     {$IFC NOT GENERATINGCFM}
  91.     INLINE $303C, $0402, $ABF1;
  92.     {$ENDC}
  93. FUNCTION SetGestaltValue(selector: OSType; newValue: LONGINT): OSErr;
  94.     {$IFC NOT GENERATINGCFM}
  95.     INLINE $303C, $0404, $ABF1;
  96.     {$ENDC}
  97. {$ENDC}
  98. {$IFC FOR_SYSTEM8_COOPERATIVE }
  99.  
  100. TYPE
  101.     GestaltIteratorRef                    = Ptr;
  102. {$ENDC}
  103. {$IFC FOR_SYSTEM8_COOPERATIVE }
  104. FUNCTION CreateGestaltIterator(VAR theIterator: GestaltIteratorRef): OSStatus; C;
  105. FUNCTION DisposeGestaltIterator(theIterator: GestaltIteratorRef): OSStatus; C;
  106. FUNCTION GetNextGestaltSelectors(theIterator: GestaltIteratorRef; numberToGet: UInt32; VAR gestaltSelectors: OSType; VAR numberGotten: UInt32): OSStatus; C;
  107. FUNCTION DeleteGestalt(selector: OSType): OSErr; C;
  108. {$ENDC}
  109. {$IFC FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED }
  110. FUNCTION DeleteGestaltValue(selector: OSType): OSErr;
  111.     {$IFC NOT GENERATINGCFM}
  112.     INLINE $303C, $0203, $ABF1;
  113.     {$ENDC}
  114. {$ENDC}
  115. {$IFC NOT OLDROUTINELOCATIONS }
  116. {     Environs Equates }
  117.  
  118. CONST
  119.     curSysEnvVers                = 2;                            {     Updated to equal latest SysEnvirons version }
  120.  
  121.  
  122. TYPE
  123.     SysEnvRecPtr = ^SysEnvRec;
  124.     SysEnvRec = RECORD
  125.         environsVersion:        INTEGER;
  126.         machineType:            INTEGER;
  127.         systemVersion:            INTEGER;
  128.         processor:                INTEGER;
  129.         hasFPU:                    BOOLEAN;
  130.         hasColorQD:                BOOLEAN;
  131.         keyBoardType:            INTEGER;
  132.         atDrvrVersNum:            INTEGER;
  133.         sysVRefNum:                INTEGER;
  134.     END;
  135.  
  136. {$IFC FOR_SYSTEM7_AND_SYSTEM8_DEPRECATED }
  137. FUNCTION SysEnvirons(versionRequested: INTEGER; VAR theWorld: SysEnvRec): OSErr;
  138.     {$IFC NOT GENERATINGCFM}
  139.     INLINE $205F, $301F, $A090, $3E80;
  140.     {$ENDC}
  141. {$ENDC}
  142. {$ENDC}
  143. {  Environment Selectors  }
  144.  
  145. CONST
  146.     gestaltAddressingModeAttr    = 'addr';                        {  addressing mode attributes  }
  147.     gestalt32BitAddressing        = 0;                            {  using 32-bit addressing mode  }
  148.     gestalt32BitSysZone            = 1;                            {  32-bit compatible system zone  }
  149.     gestalt32BitCapable            = 2;                            {  Machine is 32-bit capable  }
  150.  
  151.     gestaltAliasMgrAttr            = 'alis';                        {  Alias Mgr Attributes  }
  152.     gestaltAliasMgrPresent        = 0;                            {  True if the Alias Mgr is present  }
  153.     gestaltAliasMgrSupportsRemoteAppletalk = 1;                    {  True if the Alias Mgr knows about Remote Appletalk  }
  154.     gestaltAliasMgrSupportsAOCEKeychain = 2;                    {  True if the Alias Mgr knows about the AOCE Keychain  }
  155.  
  156.     gestaltATAAttr                = 'ata ';                        {  ATA is the driver to support IDE hard disks  }
  157.     gestaltATAPresent            = 0;                            {  if set, ATA Manager is present  }
  158.  
  159.     gestaltAppleTalkVersion        = 'atlk';                        {  appletalk version  }
  160.  
  161. {
  162.     FORMAT OF gestaltATalkVersion RESPONSE
  163.     --------------------------------------
  164.     The version is stored in the high three bytes of the response value.  Let us number
  165.     the bytes in the response value from 0 to 3, where 0 is the least-significant byte.
  166.     
  167.         Byte#:       3 2 1 0
  168.         Value:    0xMMNNRR00
  169.         
  170.     Byte 3 (MM) contains the major revision number, byte 2 (NN) contains the minor
  171.     revision number, and byte 1 (RR) contains a constant that represents the release
  172.     stage.  Byte 0 always contains 0x00.  The constants for the release stages are:
  173.     
  174.         development = 0x20
  175.         alpha        = 0x40
  176.         beta        = 0x60
  177.         final        = 0x80
  178.         release        = 0x80
  179.     
  180.     For example, if you call Gestalt with the 'atkv' selector when AppleTalk version 57
  181.     is loaded, you receive the long integer response value 0x39008000.
  182. }
  183.     gestaltATalkVersion            = 'atkv';                        {  Detailed AppleTalk version; see comment above for format  }
  184.  
  185.     gestaltAUXVersion            = 'a/ux';                        {  a/ux version, if present  }
  186.  
  187.     gestaltBusClkSpeed            = 'bclk';                        {  main I/O bus clock speed in hertz  }
  188.  
  189.     gestaltCloseViewAttr        = 'BSDa';                        {  CloseView attributes  }
  190.     gestaltCloseViewEnabled        = 0;                            {  Closeview enabled (dynamic bit - returns current state)  }
  191.     gestaltCloseViewDisplayMgrFriendly = 1;                        {  Closeview compatible with Display Manager (FUTURE)  }
  192.  
  193.     gestaltCFMAttr                = 'cfrg';                        {  returns information about the Code Fragment Manager  }
  194.     gestaltCFMPresent            = 0;                            {  true if the Code Fragment Manager is present  }
  195.  
  196.     gestaltCollectionMgrVersion    = 'cltn';                        {  Collection Manager version  }
  197.  
  198.     gestaltColorMatchingAttr    = 'cmta';                        {  ColorSync attributes  }
  199.     gestaltHighLevelMatching    = 0;
  200.     gestaltColorMatchingLibLoaded = 1;
  201.  
  202.     gestaltColorMatchingVersion    = 'cmtc';
  203.     gestaltColorSync10            = $0100;                        {  0x0100 & 0x0110 _Gestalt versions for 1.0-1.0.3 product  }
  204.     gestaltColorSync11            = $0110;                        {    0x0100 == low-level matching only  }
  205.     gestaltColorSync104            = $0104;                        {  Real version, by popular demand  }
  206.     gestaltColorSync105            = $0105;
  207.     gestaltColorSync20            = $0200;                        {  ColorSync 2.0  }
  208.  
  209.     gestaltConnMgrAttr            = 'conn';                        {  connection mgr attributes     }
  210.     gestaltConnMgrPresent        = 0;
  211.     gestaltConnMgrCMSearchFix    = 1;                            {  Fix to CMAddSearch?      }
  212.     gestaltConnMgrErrorString    = 2;                            {  has CMGetErrorString()  }
  213.     gestaltConnMgrMultiAsyncIO    = 3;                            {  CMNewIOPB, CMDisposeIOPB, CMPBRead, CMPBWrite, CMPBIOKill  }
  214.  
  215.     gestaltComponentMgr            = 'cpnt';                        {  Component Mgr version  }
  216.  
  217.     gestaltColorPickerVersion    = 'cpkr';                        {  returns version of ColorPicker  }
  218.     gestaltColorPicker            = 'cpkr';                        {  gestaltColorPicker is old name for gestaltColorPickerVersion  }
  219.  
  220. {
  221.     The gestaltNativeCPUtype ('cput') selector can be used to determine the
  222.     native CPU type for all Macs running System 7.5 or later.
  223.     
  224.     The 'cput' selector is not available when running System 7.0 (or earlier)
  225.     on most 68K machines.  If 'cput' is not available, then the 'proc' selector
  226.     should be used to determine the processor type.
  227.     
  228.     An application should always try the 'cput' selector first.  This is because,
  229.     on PowerPC machines, the 'proc' selector will reflect the CPU type of the
  230.     emulator's "virtual processor" rather than the native CPU type.
  231.     
  232.     The values specified below are accurate.  Prior versions of the Gestalt
  233.     interface file contained values that were off by one.
  234.     
  235.     The Quadra 840AV and the Quadra 660AV contain a bug in the ROM code that
  236.     causes the 'cput' selector to respond with the value 5.  This behavior
  237.     occurs only when running System 7.1.  System 7.5 fixes the bug by replacing
  238.     the faulty 'cput' selector function with the correct one.
  239. }
  240.     gestaltNativeCPUtype        = 'cput';                        {  Native CPU type                                        }
  241.     gestaltCPU68000                = 0;                            {  Various 68k CPUs...      }
  242.     gestaltCPU68010                = 1;
  243.     gestaltCPU68020                = 2;
  244.     gestaltCPU68030                = 3;
  245.     gestaltCPU68040                = 4;
  246.     gestaltCPU601                = $0101;                        {  IBM 601                                                  }
  247.     gestaltCPU603                = $0103;
  248.     gestaltCPU604                = $0104;
  249.     gestaltCPU603e                = $0106;
  250.  
  251.     gestaltCRMAttr                = 'crm ';                        {  comm resource mgr attributes  }
  252.     gestaltCRMPresent            = 0;
  253.     gestaltCRMPersistentFix        = 1;                            {  fix for persistent tools  }
  254.     gestaltCRMToolRsrcCalls        = 2;                            {  has CRMGetToolResource/ReleaseToolResource  }
  255.  
  256.     gestaltControlStripVersion    = 'csvr';                        {  Control Strip version (was 'sdvr')  }
  257.  
  258.     gestaltCTBVersion            = 'ctbv';                        {  CommToolbox version  }
  259.  
  260.     gestaltDBAccessMgrAttr        = 'dbac';                        {  Database Access Mgr attributes  }
  261.     gestaltDBAccessMgrPresent    = 0;                            {  True if Database Access Mgr present  }
  262.  
  263.     gestaltDictionaryMgrAttr    = 'dict';                        {  Dictionary Manager attributes  }
  264.     gestaltDictionaryMgrPresent    = 0;                            {  Dictionary Manager attributes  }
  265.  
  266.     gestaltDITLExtAttr            = 'ditl';                        {  AppenDITL, etc. calls from CTB  }
  267.     gestaltDITLExtPresent        = 0;                            {  True if calls are present  }
  268.  
  269.     gestaltDisplayMgrAttr        = 'dply';                        {  Display Manager attributes  }
  270.     gestaltDisplayMgrPresent    = 0;                            {  True if Display Mgr is present  }
  271.     gestaltDisplayMgrCanSwitchMirrored = 2;                        {  True if Display Mgr can switch modes on mirrored displays  }
  272.     gestaltDisplayMgrSetDepthNotifies = 3;                        {  True SetDepth generates displays mgr notification  }
  273.  
  274.     gestaltDisplayMgrVers        = 'dplv';                        {  Display Manager version  }
  275.  
  276.     gestaltDragMgrAttr            = 'drag';                        {  Drag Manager attributes  }
  277.     gestaltDragMgrPresent        = 0;                            {  Drag Manager is present  }
  278.     gestaltDragMgrFloatingWind    = 1;                            {  Drag Manager supports floating windows  }
  279.     gestaltPPCDragLibPresent    = 2;                            {  Drag Manager PPC DragLib is present  }
  280.     gestaltDragMgrHasImageSupport = 3;                            {  Drag Manager allows SetDragImage call  }
  281.  
  282.     gestaltEasyAccessAttr        = 'easy';                        {  Easy Access attributes  }
  283.     gestaltEasyAccessOff        = 0;                            {  if Easy Access present, but off (no icon)  }
  284.     gestaltEasyAccessOn            = 1;                            {  if Easy Access "On"  }
  285.     gestaltEasyAccessSticky        = 2;                            {  if Easy Access "Sticky"  }
  286.     gestaltEasyAccessLocked        = 3;                            {  if Easy Access "Locked"  }
  287.  
  288.     gestaltEditionMgrAttr        = 'edtn';                        {  Edition Mgr attributes  }
  289.     gestaltEditionMgrPresent    = 0;                            {  True if Edition Mgr present  }
  290.     gestaltEditionMgrTranslationAware = 1;                        {  True if edition manager is translation manager aware  }
  291.  
  292.     gestaltAppleEventsAttr        = 'evnt';                        {  Apple Events attributes  }
  293.     gestaltAppleEventsPresent    = 0;                            {  True if Apple Events present  }
  294.     gestaltScriptingSupport        = 1;
  295.     gestaltOSLInSystem            = 2;                            {  OSL is in system so don't use the one linked in to app  }
  296.  
  297.     gestaltFinderAttr            = 'fndr';                        {  Finder attributes  }
  298.     gestaltFinderDropEvent        = 0;                            {  Finder recognizes drop event  }
  299.     gestaltFinderMagicPlacement    = 1;                            {  Finder supports magic icon placement  }
  300.     gestaltFinderCallsAEProcess    = 2;                            {  Finder calls AEProcessAppleEvent  }
  301.     gestaltOSLCompliantFinder    = 3;                            {  Finder is scriptable and recordable  }
  302.     gestaltFinderSupports4GBVolumes = 4;                        {  Finder correctly handles 4GB volumes  }
  303.     gestaltFinderHasClippings    = 6;                            {  Finder supports Drag Manager clipping files  }
  304.  
  305.     gestaltFindFolderAttr        = 'fold';                        {  Folder Mgr attributes  }
  306.     gestaltFindFolderPresent    = 0;                            {  True if Folder Mgr present  }
  307.  
  308.     gestaltFontMgrAttr            = 'font';                        {  Font Mgr attributes  }
  309.     gestaltOutlineFonts            = 0;                            {  True if Outline Fonts supported  }
  310.  
  311.     gestaltFPUType                = 'fpu ';                        {  fpu type  }
  312.     gestaltNoFPU                = 0;                            {  no FPU  }
  313.     gestalt68881                = 1;                            {  68881 FPU  }
  314.     gestalt68882                = 2;                            {  68882 FPU  }
  315.     gestalt68040FPU                = 3;                            {  68040 built-in FPU  }
  316.  
  317.     gestaltFSAttr                = 'fs  ';                        {  file system attributes  }
  318.     gestaltFullExtFSDispatching    = 0;                            {  has really cool new HFSDispatch dispatcher  }
  319.     gestaltHasFSSpecCalls        = 1;                            {  has FSSpec calls  }
  320.     gestaltHasFileSystemManager    = 2;                            {  has a file system manager  }
  321.     gestaltFSMDoesDynamicLoad    = 3;                            {  file system manager supports dynamic loading  }
  322.     gestaltFSSupports4GBVols    = 4;                            {  file system supports 4 gigabyte volumes  }
  323.     gestaltFSSupports2TBVols    = 5;                            {  file system supports 2 terabyte volumes  }
  324.     gestaltHasExtendedDiskInit    = 6;                            {  has extended Disk Initialization calls  }
  325.  
  326. {$IFC NOT OLDROUTINELOCATIONS }
  327.     gestaltFSMVersion            = 'fsm ';
  328.  
  329. {$ENDC}
  330.     gestaltFXfrMgrAttr            = 'fxfr';                        {  file transfer manager attributes  }
  331.     gestaltFXfrMgrPresent        = 0;
  332.     gestaltFXfrMgrMultiFile        = 1;                            {  supports FTSend and FTReceive  }
  333.     gestaltFXfrMgrErrorString    = 2;                            {  supports FTGetErrorString  }
  334.     gestaltFXfrMgrAsync            = 3;                            { supports FTSendAsync, FTReceiveAsync, FTCompletionAsync }
  335.  
  336.     gestaltGraphicsAttr            = 'gfxa';                        {  Quickdraw GX attributes selector  }
  337.     gestaltGraphicsIsDebugging    = $00000001;
  338.     gestaltGraphicsIsLoaded        = $00000002;
  339.     gestaltGraphicsIsPowerPC    = $00000004;
  340.  
  341.     gestaltGraphicsVersion        = 'grfx';                        {  Quickdraw GX version selector  }
  342.     gestaltCurrentGraphicsVersion = $00010200;                    {  the version described in this set of headers  }
  343.  
  344.     gestaltHardwareAttr            = 'hdwr';                        {  hardware attributes  }
  345.     gestaltHasVIA1                = 0;                            {  VIA1 exists  }
  346.     gestaltHasVIA2                = 1;                            {  VIA2 exists  }
  347.     gestaltHasASC                = 3;                            {  Apple Sound Chip exists  }
  348.     gestaltHasSCC                = 4;                            {  SCC exists  }
  349.     gestaltHasSCSI                = 7;                            {  SCSI exists  }
  350.     gestaltHasSoftPowerOff        = 19;                            {  Capable of software power off  }
  351.     gestaltHasSCSI961            = 21;                            {  53C96 SCSI controller on internal bus  }
  352.     gestaltHasSCSI962            = 22;                            {  53C96 SCSI controller on external bus  }
  353.     gestaltHasUniversalROM        = 24;                            {  Do we have a Universal ROM?  }
  354.     gestaltHasEnhancedLtalk        = 30;                            {  Do we have Enhanced LocalTalk?  }
  355.  
  356.     gestaltHelpMgrAttr            = 'help';                        {  Help Mgr Attributes  }
  357.     gestaltHelpMgrPresent        = 0;                            {  true if help mgr is present  }
  358.     gestaltHelpMgrExtensions    = 1;                            {  true if help mgr extensions are installed  }
  359.     gestaltAppleGuideIsDebug    = 30;
  360.     gestaltAppleGuidePresent    = 31;                            {  true if AppleGuide is installed  }
  361.  
  362.     gestaltHardwareVendorCode    = 'hrad';                        {  Returns hardware vendor information  }
  363.     gestaltHardwareVendorApple    = 'Appl';                        {  Hardware built by Apple  }
  364.  
  365.     gestaltCompressionMgr        = 'icmp';                        {  returns version of the Image Compression Manager  }
  366.  
  367.     gestaltIconUtilitiesAttr    = 'icon';                        {  Icon Utilities attributes  (Note: available in System 7.0, despite gestalt)  }
  368.     gestaltIconUtilitiesPresent    = 0;                            {  true if icon utilities are present  }
  369.  
  370. {
  371.     To obtain information about the connected keyboard(s), one should
  372.     use the ADB Manager API.  See Technical Note OV16 for details.
  373. }
  374.     gestaltKeyboardType            = 'kbd ';                        {  keyboard type  }
  375.     gestaltMacKbd                = 1;
  376.     gestaltMacAndPad            = 2;
  377.     gestaltMacPlusKbd            = 3;
  378.     gestaltExtADBKbd            = 4;
  379.     gestaltStdADBKbd            = 5;
  380.     gestaltPrtblADBKbd            = 6;
  381.     gestaltPrtblISOKbd            = 7;
  382.     gestaltStdISOADBKbd            = 8;
  383.     gestaltExtISOADBKbd            = 9;
  384.     gestaltADBKbdII                = 10;
  385.     gestaltADBISOKbdII            = 11;
  386.     gestaltPwrBookADBKbd        = 12;
  387.     gestaltPwrBookISOADBKbd        = 13;
  388.     gestaltAppleAdjustKeypad    = 14;
  389.     gestaltAppleAdjustADBKbd    = 15;
  390.     gestaltAppleAdjustISOKbd    = 16;
  391.     gestaltJapanAdjustADBKbd    = 17;                            {  Japan Adjustable Keyboard  }
  392.     gestaltPwrBkExtISOKbd        = 20;                            {  PowerBook Extended International Keyboard with function keys  }
  393.     gestaltPwrBkExtJISKbd        = 21;                            {  PowerBook Extended Japanese Keyboard with function keys          }
  394.     gestaltPwrBkExtADBKbd        = 24;                            {  PowerBook Extended Domestic Keyboard with function keys          }
  395.  
  396.     gestaltLowMemorySize        = 'lmem';                        {  size of low memory area  }
  397.  
  398.     gestaltLogicalRAMSize        = 'lram';                        {  logical ram size  }
  399.  
  400. {
  401.     MACHINE TYPE CONSTANTS NAMING CONVENTION
  402.     
  403.         All future machine type constant names take the following form:
  404.     
  405.             gestalt<lineName><modelNumber>
  406.             
  407.     Line Names
  408.     
  409.         The following table contains the lines currently produced by Apple and the 
  410.         lineName substrings associated with them:
  411.     
  412.             Line                        lineName
  413.             -------------------------    ------------
  414.             Macintosh LC                "MacLC"
  415.             Macintosh Performa            "Performa"
  416.             Macintosh PowerBook            "PowerBook"
  417.             Macintosh PowerBook Duo        "PowerBookDuo"
  418.             Power Macintosh                "PowerMac"
  419.             Apple Workgroup Server        "AWS"
  420.         
  421.         The following table contains lineNames for some discontinued lines:
  422.     
  423.             Line                        lineName
  424.             -------------------------    ------------
  425.             Macintosh Quadra            "MacQuadra" (preferred)
  426.                                         "Quadra" (also used, but not preferred)
  427.             Macintosh Centris            "MacCentris"
  428.     
  429.     Model Numbers
  430.     
  431.         The modelNumber is a string representing the specific model of the machine
  432.         within its particular line.  For example, for the Power Macintosh 8100/80,
  433.         the modelNumber is "8100".
  434.         
  435.         Some Performa & LC model numbers contain variations in the rightmost 1 or 2
  436.         digits to indicate different RAM and Hard Disk configurations.  A single
  437.         machine type is assigned for all variations of a specific model number.  In
  438.         this case, the modelNumber string consists of the constant leftmost part
  439.         of the model number with 0s for the variant digits.  For example, the
  440.         Performa 6115 and Performa 6116 are both return the same machine type
  441.         constant:  gestaltPerforma6100.    
  442.         
  443.         
  444.     OLD NAMING CONVENTIONS
  445.         
  446.     The "Underscore Speed" suffix
  447.         
  448.         In the past, Apple differentiated between machines that had the same model
  449.         number but different speeds.  For example, the Power Macintosh 8100/80 and
  450.         Power Macintosh 8100/100 return different machine type constants.  This is
  451.         why some existing machine type constant names take the form:
  452.     
  453.             gestalt<lineName><modelNumber>_<speed>
  454.     
  455.         e.g.
  456.     
  457.             gestaltPowerMac8100_110
  458.             gestaltPowerMac7100_80
  459.             gestaltPowerMac7100_66
  460.     
  461.         It is no longer necessary to use the "underscore speed" suffix.  Starting with
  462.         the Power Surge machines (Power Macintosh 7200, 7500, 8500 and 9500), speed is
  463.         no longer used to differentiate between machine types.  This is why a Power
  464.         Macintosh 7200/75 and a Power Macintosh 7200/90 return the same machine type
  465.         constant:  gestaltPowerMac7200.
  466.         
  467.     The "Screen Type" suffix
  468.         
  469.         All PowerBook models prior to the PowerBook 190, and all PowerBook Duo models
  470.         before the PowerBook Duo 2300 take the form:
  471.         
  472.             gestalt<lineName><modelNumber><screenType>
  473.         
  474.         Where <screenType> is "c" or the empty string.
  475.         
  476.         e.g.
  477.         
  478.             gestaltPowerBook100
  479.             gestaltPowerBookDuo280
  480.             gestaltPowerBookDuo280c
  481.             gestaltPowerBook180
  482.             gestaltPowerBook180c
  483.         
  484.         Starting with the PowerBook 190 series and the PowerBook Duo 2300 series, machine
  485.         types are no longer differentiated based on screen type.  This is why a PowerBook
  486.         5300cs/100 and a PowerBook 5300c/100 both return the same machine type constant:
  487.         gestaltPowerBook5300.
  488.     
  489.         Macintosh LC 630                gestaltMacLC630
  490.         Macintosh Performa 6200            gestaltPerforma6200
  491.         Macintosh Quadra 700            gestaltQuadra700
  492.         Macintosh PowerBook 5300        gestaltPowerBook5300
  493.         Macintosh PowerBook Duo 2300    gestaltPowerBookDuo2300
  494.         Power Macintosh 8500            gestaltPowerMac8500
  495. }
  496.     gestaltMachineType            = 'mach';                        {  machine type  }
  497.     gestaltClassic                = 1;
  498.     gestaltMacXL                = 2;
  499.     gestaltMac512KE                = 3;
  500.     gestaltMacPlus                = 4;
  501.     gestaltMacSE                = 5;
  502.     gestaltMacII                = 6;
  503.     gestaltMacIIx                = 7;
  504.     gestaltMacIIcx                = 8;
  505.     gestaltMacSE030                = 9;
  506.     gestaltPortable                = 10;
  507.     gestaltMacIIci                = 11;
  508.     gestaltMacIIfx                = 13;
  509.     gestaltMacClassic            = 17;
  510.     gestaltMacIIsi                = 18;
  511.     gestaltMacLC                = 19;
  512.     gestaltQuadra900            = 20;
  513.     gestaltPowerBook170            = 21;
  514.     gestaltQuadra700            = 22;
  515.     gestaltClassicII            = 23;
  516.     gestaltPowerBook100            = 24;
  517.     gestaltPowerBook140            = 25;
  518.     gestaltQuadra950            = 26;
  519.     gestaltMacLCIII                = 27;
  520.     gestaltPerforma450            = 27;
  521.     gestaltPowerBookDuo210        = 29;
  522.     gestaltMacCentris650        = 30;
  523.     gestaltPowerBookDuo230        = 32;
  524.     gestaltPowerBook180            = 33;
  525.     gestaltPowerBook160            = 34;
  526.     gestaltMacQuadra800            = 35;
  527.     gestaltMacQuadra650            = 36;
  528.     gestaltMacLCII                = 37;
  529.     gestaltPowerBookDuo250        = 38;
  530.     gestaltAWS9150_80            = 39;
  531.     gestaltPowerMac8100_110        = 40;
  532.     gestaltAWS8150_110            = 40;
  533.     gestaltPowerMac5200            = 41;
  534.     gestaltPowerMac6200            = 42;
  535.     gestaltMacIIvi                = 44;
  536.     gestaltMacIIvm                = 45;
  537.     gestaltPerforma600            = 45;
  538.     gestaltPowerMac7100_80        = 47;
  539.     gestaltMacIIvx                = 48;
  540.     gestaltMacColorClassic        = 49;
  541.     gestaltPerforma250            = 49;
  542.     gestaltPowerBook165c        = 50;
  543.     gestaltMacCentris610        = 52;
  544.     gestaltMacQuadra610            = 53;
  545.     gestaltPowerBook145            = 54;
  546.     gestaltPowerMac8100_100        = 55;
  547.     gestaltMacLC520                = 56;
  548.     gestaltAWS9150_120            = 57;
  549.     gestaltMacCentris660AV        = 60;
  550.     gestaltPerforma46x            = 62;
  551.     gestaltPowerMac8100_80        = 65;
  552.     gestaltAWS8150_80            = 65;
  553.     gestaltPowerMac9500            = 67;
  554.     gestaltPowerMac7500            = 68;
  555.     gestaltPowerMac8500            = 69;
  556.     gestaltPowerBook180c        = 71;
  557.     gestaltPowerBook520            = 72;
  558.     gestaltPowerBook520c        = 72;
  559.     gestaltPowerBook540            = 72;
  560.     gestaltPowerBook540c        = 72;
  561.     gestaltPowerMac6100_60        = 75;
  562.     gestaltAWS6150_60            = 75;
  563.     gestaltPowerBookDuo270c        = 77;
  564.     gestaltMacQuadra840AV        = 78;
  565.     gestaltPerforma550            = 80;
  566.     gestaltPowerBook165            = 84;
  567.     gestaltPowerBook190            = 85;
  568.     gestaltMacTV                = 88;
  569.     gestaltMacLC475                = 89;
  570.     gestaltPerforma47x            = 89;
  571.     gestaltMacLC575                = 92;
  572.     gestaltMacQuadra605            = 94;
  573.     gestaltQuadra630            = 98;
  574.     gestaltPowerMac6100_66        = 100;
  575.     gestaltAWS6150_66            = 100;
  576.     gestaltPowerBookDuo280        = 102;
  577.     gestaltPowerBookDuo280c        = 103;
  578.     gestaltPowerMac7200            = 108;
  579.     gestaltPowerMac7100_66        = 112;                            {  Power Macintosh 7100/66  }
  580.     gestaltPowerBook150            = 115;
  581.     gestaltPowerBookDuo2300        = 124;
  582.     gestaltPowerBook500PPCUpgrade = 126;
  583.     gestaltPowerBook5300        = 128;
  584.  
  585.     kMachineNameStrID            = -16395;
  586.  
  587.     gestaltMachineIcon            = 'micn';                        {  machine icon  }
  588.  
  589.     gestaltMiscAttr                = 'misc';                        {  miscellaneous attributes  }
  590.     gestaltScrollingThrottle    = 0;                            {  true if scrolling throttle on  }
  591.     gestaltSquareMenuBar        = 2;                            {  true if menu bar is square  }
  592.  
  593. {
  594.     The name gestaltMixedModeVersion for the 'mixd' selector is semantically incorrect.
  595.     The same selector has been renamed gestaltMixedModeAttr to properly reflect the
  596.     Inside Mac: PowerPC System Software documentation.  The gestaltMixedModeVersion
  597.     symbol has been preserved only for backwards compatibility.
  598.  
  599.     Developers are forewarned that gestaltMixedModeVersion has a limited lifespan and
  600.     will be removed in a future release of the Interfaces.
  601.  
  602.     For the first version of Mixed Mode, both meanings of the 'mixd' selector are
  603.     functionally identical.  They both return 0x00000001.  In subsequent versions
  604.     of Mixed Mode, however, the 'mixd' selector will not respond with an increasing
  605.     version number, but rather, with 32 attribute bits with various meanings.
  606. }
  607.     gestaltMixedModeVersion        = 'mixd';                        {  returns version of Mixed Mode  }
  608.  
  609.     gestaltMixedModeAttr        = 'mixd';                        {  returns Mixed Mode attributes  }
  610.     gestaltMixedModePowerPC        = 0;                            {  true if Mixed Mode supports PowerPC ABI calling conventions  }
  611.     gestaltPowerPCAware            = 0;                            {  old name for gestaltMixedModePowerPC  }
  612.     gestaltMixedModeCFM68K        = 1;                            {  true if Mixed Mode supports CFM-68K calling conventions  }
  613.     gestaltMixedModeCFM68KHasTrap = 2;                            {  true if CFM-68K Mixed Mode implements _MixedModeDispatch (versions 1.0.1 and prior did not)  }
  614.  
  615.     gestaltMMUType                = 'mmu ';                        {  mmu type  }
  616.     gestaltNoMMU                = 0;                            {  no MMU  }
  617.     gestaltAMU                    = 1;                            {  address management unit  }
  618.     gestalt68851                = 2;                            {  68851 PMMU  }
  619.     gestalt68030MMU                = 3;                            {  68030 built-in MMU  }
  620.     gestalt68040MMU                = 4;                            {  68040 built-in MMU  }
  621.     gestaltEMMU1                = 5;                            {  Emulated MMU type 1   }
  622.  
  623.     gestaltStdNBPAttr            = 'nlup';                        {  standard nbp attributes  }
  624.     gestaltStdNBPPresent        = 0;
  625.     gestaltStdNBPSupportsAutoPosition = 1;                        {  StandardNBP takes (-1,-1) to mean alert position main screen  }
  626.  
  627.     gestaltNotificationMgrAttr    = 'nmgr';                        {  notification manager attributes  }
  628.     gestaltNotificationPresent    = 0;                            {  notification manager exists  }
  629.  
  630.     gestaltNameRegistryVersion    = 'nreg';                        {  NameRegistryLib version number  }
  631.  
  632.     gestaltNuBusSlotCount        = 'nubs';                        {  count of logical NuBus slots present  }
  633.  
  634.     gestaltOpenFirmwareInfo        = 'opfw';                        {  Open Firmware info  }
  635.  
  636.     gestaltOSAttr                = 'os  ';                        {  o/s attributes  }
  637.     gestaltSysZoneGrowable        = 0;                            {  system heap is growable  }
  638.     gestaltLaunchCanReturn        = 1;                            {  can return from launch  }
  639.     gestaltLaunchFullFileSpec    = 2;                            {  can launch from full file spec  }
  640.     gestaltLaunchControl        = 3;                            {  launch control support available  }
  641.     gestaltTempMemSupport        = 4;                            {  temp memory support  }
  642.     gestaltRealTempMemory        = 5;                            {  temp memory handles are real  }
  643.     gestaltTempMemTracked        = 6;                            {  temporary memory handles are tracked  }
  644.     gestaltIPCSupport            = 7;                            {  IPC support is present  }
  645.     gestaltSysDebuggerSupport    = 8;                            {  system debugger support is present  }
  646.  
  647.     gestaltOSTable                = 'ostt';                        {   OS trap table base   }
  648.  
  649.     gestaltProcClkSpeed            = 'pclk';                        {  processor clock speed in hertz  }
  650.  
  651.     gestaltPCXAttr                = 'pcxg';                        {  PC Exchange attributes  }
  652.     gestaltPCXHas8and16BitFAT    = 0;                            {  PC Exchange supports both 8 and 16 bit FATs  }
  653.     gestaltPCXHasProDOS            = 1;                            {  PC Exchange supports ProDOS  }
  654.  
  655.     gestaltLogicalPageSize        = 'pgsz';                        {  logical page size  }
  656.  
  657.     gestaltPopupAttr            = 'pop!';                        {  popup cdef attributes  }
  658.     gestaltPopupPresent            = 0;
  659.  
  660.     gestaltPowerMgrAttr            = 'powr';                        {  power manager attributes  }
  661.     gestaltPMgrExists            = 0;
  662.     gestaltPMgrCPUIdle            = 1;
  663.     gestaltPMgrSCC                = 2;
  664.     gestaltPMgrSound            = 3;
  665.     gestaltPMgrDispatchExists    = 4;
  666.  
  667. {
  668.  * PPC will return the combination of following bit fields.
  669.  * e.g. gestaltPPCSupportsRealTime +gestaltPPCSupportsIncoming + gestaltPPCSupportsOutGoing
  670.  * indicates PPC is cuurently is only supports real time delivery
  671.  * and both incoming and outgoing network sessions are allowed.
  672.  * By default local real time delivery is supported as long as PPCInit has been called.
  673. }
  674.     gestaltPPCToolboxAttr        = 'ppc ';                        {  PPC toolbox attributes  }
  675.     gestaltPPCToolboxPresent    = $0000;                        {  PPC Toolbox is present  Requires PPCInit to be called  }
  676.     gestaltPPCSupportsRealTime    = $1000;                        {  PPC Supports real-time delivery  }
  677.     gestaltPPCSupportsIncoming    = $0001;                        {  PPC will deny incoming network requests  }
  678.     gestaltPPCSupportsOutGoing    = $0002;                        {  PPC will deny outgoing network requests  }
  679.  
  680.     gestaltProcessorType        = 'proc';                        {  processor type  }
  681.     gestalt68000                = 1;
  682.     gestalt68010                = 2;
  683.     gestalt68020                = 3;
  684.     gestalt68030                = 4;
  685.     gestalt68040                = 5;
  686.  
  687.     gestaltParityAttr            = 'prty';                        {  parity attributes  }
  688.     gestaltHasParityCapability    = 0;                            {  has ability to check parity  }
  689.     gestaltParityEnabled        = 1;                            {  parity checking enabled  }
  690.  
  691.     gestaltQuickdrawVersion        = 'qd  ';                        {  quickdraw version  }
  692.     gestaltOriginalQD            = $0000;                        {  original 1-bit QD  }
  693.     gestalt8BitQD                = $0100;                        {  8-bit color QD  }
  694.     gestalt32BitQD                = $0200;                        {  32-bit color QD  }
  695.     gestalt32BitQD11            = $0201;                        {  32-bit color QDv1.1  }
  696.     gestalt32BitQD12            = $0220;                        {  32-bit color QDv1.2  }
  697.     gestalt32BitQD13            = $0230;                        {  32-bit color QDv1.3  }
  698.  
  699.     gestaltQuickdrawFeatures    = 'qdrw';                        {  quickdraw features  }
  700.     gestaltHasColor                = 0;                            {  color quickdraw present  }
  701.     gestaltHasDeepGWorlds        = 1;                            {  GWorlds can be deeper than 1-bit  }
  702.     gestaltHasDirectPixMaps        = 2;                            {  PixMaps can be direct (16 or 32 bit)  }
  703.     gestaltHasGrayishTextOr        = 3;                            {  supports text mode grayishTextOr  }
  704.     gestaltSupportsMirroring    = 4;                            {  Supports video mirroring via the Display Manager.  }
  705.  
  706.     gestaltQuickTimeVersion        = 'qtim';                        {  returns version of QuickTime  }
  707.     gestaltQuickTime            = 'qtim';                        {  gestaltQuickTime is old name for gestaltQuickTimeVersion  }
  708.  
  709.     gestaltQuickTimeConferencingInfo = 'qtci';                    {  returns pointer to QuickTime Conferencing information  }
  710.  
  711.     gestaltQuickTimeConferencing = 'mtlk';                        {  returns QuickTime Conferencing version  }
  712.  
  713.     gestaltQuickTimeFeatures    = 'qtrs';
  714.     gestaltPPCQuickTimeLibPresent = 0;                            {  PowerPC QuickTime glue library is present  }
  715.  
  716.     gestaltPhysicalRAMSize        = 'ram ';                        {  physical RAM size  }
  717.  
  718.     gestaltRBVAddr                = 'rbv ';                        {  RBV base address   }
  719.  
  720.     gestaltROMSize                = 'rom ';                        {  rom size  }
  721.  
  722.     gestaltROMVersion            = 'romv';                        {  rom version  }
  723.  
  724.     gestaltResourceMgrAttr        = 'rsrc';                        {  Resource Mgr attributes  }
  725.     gestaltPartialRsrcs            = 0;                            {  True if partial resources exist  }
  726.  
  727.     gestaltRealtimeMgrAttr        = 'rtmr';                        {  Realtime manager attributes             }
  728.     gestaltRealtimeMgrPresent    = 0;                            {  true if the Realtime manager is present      }
  729.  
  730.     gestaltSCCReadAddr            = 'sccr';                        {  scc read base address   }
  731.  
  732.     gestaltSCCWriteAddr            = 'sccw';                        {  scc read base address   }
  733.  
  734.     gestaltScrapMgrAttr            = 'scra';                        {  Scrap Manager attributes  }
  735.     gestaltScrapMgrTranslationAware = 0;                        {  True if scrap manager is translation aware  }
  736.  
  737.     gestaltScriptMgrVersion        = 'scri';                        {  Script Manager version number      }
  738.  
  739.     gestaltScriptCount            = 'scr#';                        {  number of active script systems    }
  740.  
  741.     gestaltSCSI                    = 'scsi';                        {  SCSI Manager attributes  }
  742.     gestaltAsyncSCSI            = 0;                            {  Supports Asynchronous SCSI  }
  743.     gestaltAsyncSCSIINROM        = 1;                            {  Async scsi is in ROM (available for booting)  }
  744.     gestaltSCSISlotBoot            = 2;                            {  ROM supports Slot-style PRAM for SCSI boots (PDM and later)  }
  745.  
  746.     gestaltControlStripAttr        = 'sdev';                        {  Control Strip attributes  }
  747.     gestaltControlStripExists    = 0;                            {  Control Strip is installed  }
  748.     gestaltControlStripVersionFixed = 1;                        {  Control Strip version Gestalt selector was fixed  }
  749.     gestaltControlStripUserFont    = 2;                            {  supports user-selectable font/size  }
  750.     gestaltControlStripUserHotKey = 3;                            {  support user-selectable hot key to show/hide the window  }
  751.  
  752.     gestaltSerialAttr            = 'ser ';                        {  Serial attributes  }
  753.     gestaltHasGPIaToDCDa        = 0;                            {  GPIa connected to DCDa }
  754.     gestaltHasGPIaToRTxCa        = 1;                            {  GPIa connected to RTxCa clock input }
  755.     gestaltHasGPIbToDCDb        = 2;                            {  GPIb connected to DCDb  }
  756.  
  757.     gestaltNuBusConnectors        = 'sltc';                        {  bitmap of NuBus connectors }
  758.  
  759.     gestaltSlotAttr                = 'slot';                        {  slot attributes   }
  760.     gestaltSlotMgrExists        = 0;                            {  true is slot mgr exists   }
  761.     gestaltNuBusPresent            = 1;                            {  NuBus slots are present   }
  762.     gestaltSESlotPresent        = 2;                            {  SE PDS slot present   }
  763.     gestaltSE30SlotPresent        = 3;                            {  SE/30 slot present   }
  764.     gestaltPortableSlotPresent    = 4;                            {  Portable's slot present   }
  765.  
  766.     gestaltFirstSlotNumber        = 'slt1';                        {  returns first physical slot  }
  767.  
  768.     gestaltSoundAttr            = 'snd ';                        {  sound attributes  }
  769.     gestaltStereoCapability        = 0;                            {  sound hardware has stereo capability  }
  770.     gestaltStereoMixing            = 1;                            {  stereo mixing on external speaker  }
  771.     gestaltSoundIOMgrPresent    = 3;                            {  The Sound I/O Manager is present  }
  772.     gestaltBuiltInSoundInput    = 4;                            {  built-in Sound Input hardware is present  }
  773.     gestaltHasSoundInputDevice    = 5;                            {  Sound Input device available  }
  774.     gestaltPlayAndRecord        = 6;                            {  built-in hardware can play and record simultaneously  }
  775.     gestalt16BitSoundIO            = 7;                            {  sound hardware can play and record 16-bit samples  }
  776.     gestaltStereoInput            = 8;                            {  sound hardware can record stereo  }
  777.     gestaltLineLevelInput        = 9;                            {  sound input port requires line level  }
  778.                                                                 {  the following bits are not defined prior to Sound Mgr 3.0  }
  779.     gestaltSndPlayDoubleBuffer    = 10;                            {  SndPlayDoubleBuffer available, set by Sound Mgr 3.0 and later  }
  780.     gestaltMultiChannels        = 11;                            {  multiple channel support, set by Sound Mgr 3.0 and later  }
  781.     gestalt16BitAudioSupport    = 12;                            {  16 bit audio data supported, set by Sound Mgr 3.0 and later  }
  782.  
  783.     gestaltSoftwareVendorCode    = 'srad';                        {  Returns system software vendor information  }
  784.     gestaltSoftwareVendorApple    = 'Appl';                        {  System software sold by Apple  }
  785.     gestaltSoftwareVendorLicensee = 'Lcns';                        {  System software sold by licensee  }
  786.  
  787.     gestaltStandardFileAttr        = 'stdf';                        {  Standard File attributes  }
  788.     gestaltStandardFile58        = 0;                            {  True if selectors 5-8 (StandardPutFile-CustomGetFile) are supported  }
  789.     gestaltStandardFileTranslationAware = 1;                    {  True if standard file is translation manager aware  }
  790.     gestaltStandardFileHasColorIcons = 2;                        {  True if standard file has 16x16 color icons  }
  791.     gestaltStandardFileUseGenericIcons = 3;                        {  Standard file LDEF to use only the system generic icons if true  }
  792.     gestaltStandardFileHasDynamicVolumeAllocation = 4;            {  True if standard file supports more than 20 volumes  }
  793.  
  794.     gestaltSysArchitecture        = 'sysa';                        {  Native System Architecture  }
  795.     gestalt68k                    = 1;                            {  Motorola MC68k architecture  }
  796.     gestaltPowerPC                = 2;                            {  IBM PowerPC architecture  }
  797.  
  798.     gestaltSystemUpdateVersion    = 'sysu';                        {  System Update version  }
  799.  
  800.     gestaltSystemVersion        = 'sysv';                        {  system version }
  801.  
  802.     gestaltTSMgrVersion            = 'tsmv';                        {  Text Services Mgr version, if present  }
  803.     gestaltTSMgr2                = $0200;
  804.  
  805.     gestaltTSMgrAttr            = 'tsma';                        {  Text Services Mgr attributes, if present  }
  806.     gestaltTSMDisplayMgrAwareBit = 0;                            {  TSM knows about display manager  }
  807.     gestaltTSMdoesTSMTEBit        = 1;                            {  TSM has integrated TSMTE  }
  808.  
  809.     gestaltTSMTEVersion            = 'tmTV';
  810.     gestaltTSMTE1                = $0100;
  811.     gestaltTSMTE2                = $0200;
  812.  
  813.     gestaltTSMTEAttr            = 'tmTE';
  814.     gestaltTSMTEPresent            = 0;
  815.     gestaltTSMTE                = 0;                            {  gestaltTSMTE is old name for gestaltTSMTEPresent  }
  816.  
  817.     gestaltTextEditVersion        = 'te  ';                        {  TextEdit version number  }
  818.     gestaltTE1                    = 1;                            {  TextEdit in MacIIci ROM  }
  819.     gestaltTE2                    = 2;                            {  TextEdit with 6.0.4 Script Systems on MacIIci (Script bug fixes for MacIIci)  }
  820.     gestaltTE3                    = 3;                            {  TextEdit with 6.0.4 Script Systems all but MacIIci  }
  821.     gestaltTE4                    = 4;                            {  TextEdit in System 7.0  }
  822.     gestaltTE5                    = 5;                            {  TextWidthHook available in TextEdit  }
  823.     gestaltTE6                    = 6;                            {  TextEdit in System 8.0  }
  824.  
  825.     gestaltTEAttr                = 'teat';                        {  TextEdit attributes  }
  826.     gestaltTEHasGetHiliteRgn    = 0;                            {  TextEdit has TEGetHiliteRgn  }
  827.     gestaltTESupportsInlineInput = 1;                            {  TextEdit does Inline Input  }
  828.     gestaltTESupportsTextObjects = 2;                            {  TextEdit does Text Objects  }
  829.  
  830.     gestaltTeleMgrAttr            = 'tele';                        {  Telephone manager attributes  }
  831.     gestaltTeleMgrPresent        = 0;
  832.     gestaltTeleMgrPowerPCSupport = 1;
  833.     gestaltTeleMgrSoundStreams    = 2;
  834.     gestaltTeleMgrAutoAnswer    = 3;
  835.     gestaltTeleMgrIndHandset    = 4;
  836.     gestaltTeleMgrSilenceDetect    = 5;
  837.     gestaltTeleMgrNewTELNewSupport = 6;
  838.  
  839.     gestaltTermMgrAttr            = 'term';                        {  terminal mgr attributes  }
  840.     gestaltTermMgrPresent        = 0;
  841.     gestaltTermMgrErrorString    = 2;
  842.  
  843.     gestaltTimeMgrVersion        = 'tmgr';                        {  time mgr version  }
  844.     gestaltStandardTimeMgr        = 1;                            {  standard time mgr is present  }
  845.     gestaltRevisedTimeMgr        = 2;                            {  revised time mgr is present  }
  846.     gestaltExtendedTimeMgr        = 3;                            {  extended time mgr is present  }
  847.  
  848.     gestaltSpeechAttr            = 'ttsc';                        {  Speech Manager attributes  }
  849.     gestaltSpeechMgrPresent        = 0;                            {  bit set indicates that Speech Manager exists  }
  850.     gestaltSpeechHasPPCGlue        = 1;                            {  bit set indicates that native PPC glue for Speech Manager API exists  }
  851.  
  852.     gestaltToolboxTable            = 'tbtt';                        {   OS trap table base   }
  853.  
  854.     gestaltThreadMgrAttr        = 'thds';                        {  Thread Manager attributes  }
  855.     gestaltThreadMgrPresent        = 0;                            {  bit true if Thread Mgr is present  }
  856.     gestaltSpecificMatchSupport    = 1;                            {  bit true if Thread Mgr supports exact match creation option  }
  857.     gestaltThreadsLibraryPresent = 2;                            {  bit true if Thread Mgr shared library is present  }
  858.  
  859.     gestaltTVAttr                = 'tv  ';                        {  TV version  }
  860.     gestaltHasTVTuner            = 0;                            {  supports Philips FL1236F video tuner  }
  861.     gestaltHasSoundFader        = 1;                            {  supports Philips TEA6330 Sound Fader chip  }
  862.     gestaltHasHWClosedCaptioning = 2;                            {  supports Philips SAA5252 Closed Captioning  }
  863.     gestaltHasIRRemote            = 3;                            {  supports CyclopsII Infra Red Remote control  }
  864.     gestaltHasVidDecoderScaler    = 4;                            {  supports Philips SAA7194 Video Decoder/Scaler  }
  865.     gestaltHasStereoDecoder        = 5;                            {  supports Sony SBX1637A-01 stereo decoder  }
  866.     gestaltHasSerialFader        = 6;                            {  has fader audio in serial with system audio  }
  867.     gestaltHasFMTuner            = 7;                            {  has FM Tuner from donnybrook card  }
  868.  
  869.     gestaltVersion                = 'vers';                        {  gestalt version  }
  870.     gestaltValueImplementedVers    = 5;                            {  version of gestalt where gestaltValue is implemented.  }
  871.  
  872.     gestaltVIA1Addr                = 'via1';                        {  via 1 base address   }
  873.  
  874.     gestaltVIA2Addr                = 'via2';                        {  via 2 base address   }
  875.  
  876.     gestaltVMAttr                = 'vm  ';                        {  virtual memory attributes  }
  877.     gestaltVMPresent            = 0;                            {  true if virtual memory is present  }
  878.  
  879.     gestaltTranslationAttr        = 'xlat';                        {  Translation Manager attributes  }
  880.     gestaltTranslationMgrExists    = 0;                            {  True if translation manager exists  }
  881.     gestaltTranslationMgrHintOrder = 1;                            {  True if hint order reversal in effect  }
  882.     gestaltTranslationPPCAvail    = 2;
  883.     gestaltTranslationGetPathAPIAvail = 3;
  884.  
  885.     gestaltExtToolboxTable        = 'xttt';                        {  Extended Toolbox trap table base  }
  886.  
  887. {$ALIGN RESET}
  888. {$POP}
  889.  
  890. {$SETC UsingIncludes := GestaltEquIncludes}
  891.  
  892. {$ENDC} {__GESTALTEQU__}
  893.  
  894. {$IFC NOT UsingIncludes}
  895.  END.
  896. {$ENDC}
  897.